From: Ian Jackson Date: Thu, 16 Oct 2014 17:44:12 +0000 (+0100) Subject: libxl: Fix a couple of log messages to print correct errnos X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4177 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=916d33f787fb0935a07257fc11bcbb3ddfa6eb08;p=xen.git libxl: Fix a couple of log messages to print correct errnos xc_domain_create and xc_cpupool_movedomain do not return errno values; they return -1 and set errno. Fix the logging accordingly. Signed-off-by: Ian Jackson Reviewed-by: Don Slutz Acked-by: Wei Liu Acked-by: Ian Campbell --- diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c index 8b825849d1..8ae9701707 100644 --- a/tools/libxl/libxl_create.c +++ b/tools/libxl/libxl_create.c @@ -515,14 +515,14 @@ int libxl__domain_make(libxl__gc *gc, libxl_domain_create_info *info, ret = xc_domain_create(ctx->xch, info->ssidref, handle, flags, domid); if (ret < 0) { - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, ret, "domain creation fail"); + LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "domain creation fail"); rc = ERROR_FAIL; goto out; } ret = xc_cpupool_movedomain(ctx->xch, info->poolid, *domid); if (ret < 0) { - LIBXL__LOG_ERRNOVAL(ctx, LIBXL__LOG_ERROR, ret, "domain move fail"); + LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "domain move fail"); rc = ERROR_FAIL; goto out; }